DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class / Read Method / Read(Byte[],ReadBehaviours) Method

The byte array to read

The behaviours to be used when reading this stream




In This Topic
    Read(Byte[],ReadBehaviours) Method
    In This Topic
    Reads from a byte array
    Syntax
    'Declaration
     
    Public Overloads Sub Read( _
       ByVal Array() As Byte, _
       Optional ByVal Behaviour As ReadBehaviours _
    ) 
    'Usage
     
    Dim instance As DicomDataSet
    Dim Array() As Byte
    Dim Behaviour As ReadBehaviours
     
    instance.Read(Array, Behaviour)
    public void Read( 
       byte[] Array,
       ReadBehaviours Behaviour
    )
    public:
    void Read( 
       array<byte>^ Array,
       ReadBehaviours^ Behaviour
    ) 

    Parameters

    Array

    The byte array to read

    Behaviour

    The behaviours to be used when reading this stream

    Remarks
    Reads an array of bytes, which may have been written by the Write method.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also